9fe70130beb23b0e277168474d5d7f8e181fbd4c,src/main/java/reactor/core/publisher/BlockingSingleSubscriber.java,BlockingSingleSubscriber,blockingGet,#number#TimeUnit#,102

Before Change


        
        Throwable e = error;
        if (e != null) {
            throw Exceptions.propagate(e);
        }
        return value;
    }

After Change



		Throwable e = error;
		if (e != null) {
			RuntimeException re = Exceptions.propagate(e);
			re.addSuppressed(new Exception("#block terminated with an error"));
			throw re;
		}
		return value;
	}